golang.org/x/net/trace.histogram.buckets (field)
23 uses
golang.org/x/net/trace (current package)
histogram.go#L30: buckets []int64 // bucketed values for histogram
histogram.go#L48: h.buckets[bucketIndex]++
histogram.go#L53: if h.buckets == nil {
histogram.go#L54: h.buckets = make([]int64, bucketCount)
histogram.go#L55: h.buckets[h.value] = h.valueCount
histogram.go#L88: for _, val := range h.buckets {
histogram.go#L133: for i := range h.buckets {
histogram.go#L134: value := h.buckets[i]
histogram.go#L145: for h.buckets[j] == 0 {
histogram.go#L181: h.buckets[o.value] += o.valueCount
histogram.go#L183: for i := range h.buckets {
histogram.go#L184: h.buckets[i] += o.buckets[i]
histogram.go#L194: h.buckets = nil
histogram.go#L206: copy(h.buckets, o.buckets)
histogram.go#L217: for i := range h.buckets {
histogram.go#L218: h.buckets[i] = int64(float64(h.buckets[i]) * ratio)
histogram.go#L236: h.sum, h.sumOfSquares, h.value, h.valueCount, h.buckets)
histogram.go#L277: for _, n := range h.buckets {
histogram.go#L291: buckets := make([]*bucketData, len(h.buckets))
histogram.go#L293: for i, n := range h.buckets {